google.golang.org/grpc.ClientConn.sc (field)

14 uses

	google.golang.org/grpc (current package)
		clientconn.go#L696: 	sc              *ServiceConfig             // Latest service config received from the resolver.
		clientconn.go#L797: 	if cc.sc != nil {
		clientconn.go#L798: 		cc.applyServiceConfigAndBalancer(cc.sc, nil)
		clientconn.go#L852: 			if cc.sc == nil {
		clientconn.go#L862: 	balCfg := cc.sc.lbConfig
		clientconn.go#L1123: 	return getMethodConfig(cc.sc, method)
		clientconn.go#L1129: 	if cc.sc == nil {
		clientconn.go#L1132: 	return cc.sc.healthCheckConfig
		clientconn.go#L1140: 	cc.sc = sc
		clientconn.go#L1145: 	if cc.sc.retryThrottling != nil {
		clientconn.go#L1147: 			tokens: cc.sc.retryThrottling.MaxTokens,
		clientconn.go#L1148: 			max:    cc.sc.retryThrottling.MaxTokens,
		clientconn.go#L1149: 			thresh: cc.sc.retryThrottling.MaxTokens / 2,
		clientconn.go#L1150: 			ratio:  cc.sc.retryThrottling.TokenRatio,